:root {
    --primary: #4361ee;
    --secondary: #3a50d1; 
    --accent: #4895ef;
    --tertiary: #4361ee;
    --orange: #ff7f50;
    --dark: #1e1e2c;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --gray-dark: #495057;
    --light: #f8f9fa;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --gradient-1: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-2: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-3: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 10px 30px rgba(67, 97, 238, 0.07);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--primary);
    background-image: url('fundoparaosite.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.hero {
    position: relative;
    color: white;
    padding: 2rem 0 6rem;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: var(--spacing-xl);
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image {
    flex: 1;
    position: relative;
    animation: float 8s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.hero .btn-primary {
    background-color: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.hero .btn-primary:hover {
    background-color: #e66a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: transparent;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSg2NywgOTcsIDIzOCwgMC4wMykiPjxwYXRoIGQ9Ik0xMjgwIDMuNEMxMDUwLjU5IDE4IDEwMTkuNCA4NC44OSA3MzQuNDIgODQuODljLTMyMCAwLTMyMC04NC4zLTY0MC04NC4zQzU5LjQuNTkgMjguMiAxLjYgMCAzLjRWMTQwaDEyODB6IiBmaWxsLW9wYWNpdHk9Ii4zIi8+PHBhdGggZD0iTTAgMjQuMzFjNDMuNDYtNS42OSA5NC41Ni05LjI1IDE1OC40Mi05LjI1IDMyMCAwIDMyMCA4OS4yNCA2NDAgODkuMjQgMjU2LjEzIDAgMzA3LjI4LTU3LjE2IDQ4MS41OC04MFYxNDBIMHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMTI4MCA1MS43NmMtMjAxIDEyLjQ5LTI0Mi40MyA1My40LTUxMy41OCA1My40LTMyMCAwLTMyMC01Ny02NDAtNTctNDguODUuMDEtOTAuMjEgMS4zNS0xMjYuNDIgMy42VjE0MGgxMjgweiIvPjwvZz48L3N2Zz4=');
    background-size: 100% 100%;
    opacity: 0.5;
    z-index: -1;
    transform: rotate(180deg);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: white;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Plans Section */
.plans {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(150px, -150px);
}

.plans::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-150px, 150px);
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-header {
    padding: var(--spacing-lg);
    background: var(--gradient-1);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIj48cGF0aCBkPSJNMTI4MCAzLjRDMTA1MC41OSAxOCAxMDE5LjQgODQuODkgNzM0LjQyIDg0Ljg5Yy0zMjAgMC0zMjAtODQuMy02NDAtODQuM0M1OS40LjU5IDI4LjIgMS42IDAgMy40VjE0MGgxMjgweiIgZmlsbC1vcGFjaXR5PSIuMyIvPjxwYXRoIGQ9Ik0wIDI0LjMxYzQzLjQYLTUuNjkgOTQuNTYtOS4yNSAxNTguNDItOS4yNSAzMjAgMCAzMjAgODkuMjQgNjQwIDg5LjI0IDI1Ni4xMyAwIDMwNy4yOC01Ny4xNiA0ODEuNTgtODBWMTQwSDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTEyODAgNTEuNzZjLTIwMSAxMi40OS0yNDIuNDMgNTMuNC01MTMuNTggNTMuNC0zMjAgMC0zMjAtNTctNjQwLTU3LTQ4Ljg1LjAxLTkwLjIxIDEuMzUtMTI2LjQyIDMuNlYxNDBoMTI4MHoiLz48L2c+PC9zdmc+');
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: 0;
}

.plan-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.plan-speed {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

.plan-price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray);
    margin-left: 5px;
}

.plan-features {
    padding: var(--spacing-lg);
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.plan-feature i {
    color: var(--success);
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
    margin-top: 3px;
}

.plan-feature span {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.plan-footer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    text-align: center;
}

.btn-plan {
    display: inline-block;
    padding: 14px 28px;
    background: var(--orange);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-plan:hover::before {
    width: 100%;
}

.btn-plan:hover {
    background: #e66a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
    color: white;
}

/* Ribbon for featured plans */
.ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    z-index: 2;
    overflow: hidden;
    width: 150px;
    height: 150px;
    text-align: right;
}

.ribbon span {
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 32px;
    transform: rotate(45deg);
    width: 200px;
    display: block;
    background: var(--orange);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 42px;
    right: -42px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #e66a40;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #e66a40;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #e66a40;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #e66a40;
}

/* Coverage Check Form */
.coverage-check {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: transparent;
}

.coverage-check::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(150px, -150px);
}

.form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--dark);
}

.form-container p {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.coverage-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9fafc;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    background-color: white;
}

.form-group:nth-child(1),
.form-group:nth-child(2),
.form-group:nth-child(5) {
    grid-column: span 2;
}

.form-success {
    text-align: center;
    padding: var(--spacing-lg);
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--spacing-md);
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: var(--gray);
}

.coverage-form .btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.coverage-form .btn-primary:hover {
    background: #e66a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
    color: white;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(150px, 150px);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-lg);
    position: relative;
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-rating i {
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: var(--spacing-md);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: transparent;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-150px, -150px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray-dark);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: transparent;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    color: white;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact p a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-contact p a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-contact p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: var(--spacing-sm);
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e66a40;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.4);
    color: white;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-whatsapp.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-whatsapp i {
    font-size: 24px;
    margin-right: 10px;
}

.floating-whatsapp span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .coverage-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(1),
    .form-group:nth-child(2),
    .form-group:nth-child(5) {
        grid-column: span 1;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: var(--spacing-md) 0 calc(var(--spacing-lg) + 50px);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .form-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    
    .floating-whatsapp i {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-content {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .back-to-top, 
    .floating-whatsapp {
        bottom: 15px;
    }
    
    .back-to-top {
        left: 15px;
    }
    
    .floating-whatsapp {
        right: 15px;
    }
}


/* Ajustes para novo logo */
.logo-image {
    max-height: 100px;
    width: auto;
}

/* Ajustes para mascote na seção hero */
.hero-image img {
    max-height: 520px;
    width: auto;
    object-fit: contain;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transform: translateY(-20px);
}

/* Estilo para o logo no rodapé */
.logo-image-footer {
    max-height: 60px;
    margin-bottom: 1rem;
}