:root {
    --primary-color: #ff6600;
    --secondary-color: #ff9933;
    --dark-color: #333;
    --light-color: #fff;
    --bg-gradient: linear-gradient(135deg, #ff6600 0%, #ffb366 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--dark-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--light-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

:root {
    --primary-color: #ff6600;
    --secondary-color: #ff9933;
    --dark-color: #333;
    --light-color: #fff;
    --bg-gradient: linear-gradient(135deg, #ff6600 0%, #ffb366 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--dark-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--light-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 100px; /* Ajuste a altura conforme necessário */
    transform: scale(2.05);
    width:auto;  /* Mantém a proporção da imagem */
    display: block;
    transition: transform 0.3s ease;
}


.logo span { color: var(--dark-color); }

nav ul { display: flex; list-style: none; align-items: center; }

nav ul li { margin-left: 25px; }

nav ul li a { text-decoration: none; color: var(--dark-color); font-weight: 600; }

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 30px 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
}

.hero-img { 

     height: 150%;
     width: 100%;
     
    }

/* Planos */
.planos { padding: 80px 20px; text-align: center; }

.planos h2 { font-size: 2.5rem; margin-bottom: 50px; }

.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.gb { font-size: 3rem; font-weight: 800; color: var(--primary-color); }

.preco { font-size: 2rem; font-weight: bold; margin: 15px 0; }

.preco span { font-size: 1rem; color: #999; }

.card ul { list-style: none; margin: 25px 0; text-align: left; padding-left: 20px; }

.card ul li { margin-bottom: 10px; }

.card ul li i { color: #2ecc71; margin-right: 10px; }

.btn-card {
    display: block;
    background: var(--dark-color);
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

.featured .btn-card { background: var(--primary-color); }

footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.logo span { color: var(--dark-color); }

nav ul { display: flex; list-style: none; align-items: center; }

nav ul li { margin-left: 25px; }

nav ul li a { text-decoration: none; color: var(--dark-color); font-weight: 600; }

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
}

.hero-img img { width: 100%; max-width: 500px; }

/* Planos */
.planos { padding: 80px 20px; text-align: center; }

.planos h2 { font-size: 2.5rem; margin-bottom: 50px; }

.grid-planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.gb { font-size: 3rem; font-weight: 800; color: var(--primary-color); }

.preco { font-size: 2rem; font-weight: bold; margin: 15px 0; }

.preco span { font-size: 1rem; color: #999; }

.card ul { list-style: none; margin: 25px 0; text-align: left; padding-left: 20px; }

.card ul li { margin-bottom: 10px; }

.card ul li i { color: #2ecc71; margin-right: 10px; }

.btn-card {
    display: block;
    background: var(--dark-color);
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

.featured .btn-card { background: var(--primary-color); }

footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}
footer {
    background: #ff6600;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-icon {
    text-decoration: none;
    color: white;
    display: flex;
    align-items:right;
    gap: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.social-icon i {
    font-size: 24px;
}

/* Cores de hover específicas */
.social-icon.whatsapp:hover {
    color: #25d366;
}

.social-icon.instagram:hover {
    color: #e4405f;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
    font-size: 0.9rem;
    color: white;
}

/* Responsividade para telemóveis */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}