/*
Theme Name: Terelink
Theme URI: https://terelink.com.br/
Author: Misteregis
Author URI: https://terelink.com.br/
Description: Um tema WordPress para provedores de internet.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: terelink
*/

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f9fb;
    color: #222;
}
header {
    background: #0047ab;
    color: #fff;
    padding: 1.5em 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ffb400;
}

.hero {
    background: linear-gradient(90deg, #0047ab 70%, #ffb400 100%);
    color: #fff;
    padding: 4em 0 2em 0;
    text-align: center;
}
.plans {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin: 3em 0;
    flex-wrap: wrap;
}
.plan-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 2em;
    flex: 1 1 220px;
    max-width: 300px;
    min-width: 200px;
    text-align: center;
}
.plan-card h3 {
    margin-top: 0;
    color: #0047ab;
}
.plan-card .price {
    font-size: 2em;
    color: #ffb400;
    margin: 0.5em 0;
}
.btn {
    background: #0047ab;
    color: #fff;
    padding: 0.7em 1.5em;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    margin-top: 1em;
}
.btn:hover {
    background: #ffb400;
    color: #222;
}
.benefits {
    background: #e9f1fb;
    padding: 2em 0;
    text-align: center;
}
.benefits h2 {
    color: #0047ab;
}
.benefits-list {
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2em;
}
.benefit {
    flex: 1 1 200px;
    max-width: 250px;
}
.contact-section {
    background: #fff;
    padding: 2em 0;
    text-align: center;
}
.contact-section h2 {
    color: #0047ab;
}
footer {
    background: #021f40;
    color: #fff;
    padding: 1.5em 0;
    text-align: center;
    font-size: 0.95em;
}
@media (max-width: 900px) {
    .plans, .benefits-list {
        flex-direction: column;
        align-items: center;
    }
}