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

img {
    width: 100%;
    height: 200px;
}

a {
    text-decoration: none;
}

:root {
    /* Colors - Azul como cor principal */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    /* Neutrals */
    --background: #ffffff;
    --foreground: #1e293b;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow: hidden;
}

.logo-text-mobile img {
    width: 250px;
    height: 80px;
    margin-left: 10%;
    margin-top: 5%;
}

#icc {
    width: 250px;
    height: 80px;
    position: absolute;
    z-index: 10000;
    top: 806%;
    right: 61.4%;
}

#iccc {
    width: 250px;
    height: 80px;
    position: absolute;
    z-index: 10000;
    top: 1185%;
    right: 76.4%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

#lado {
    margin-left: 30%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--muted-foreground);
}

.logo-text img {
    margin-left: 12%;
    margin-top: 5%;
    width: 250px;
    height: 90px;
}

.logo-text-mobile {
    display: none;
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.phone-number a {
    color: var(--foreground);
    text-decoration: none;
}

.phone-number a:hover {
    color: var(--primary);
}

.btn-text-short {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    right: -100%;
    width: 20rem;
    height: calc(100vh - 4rem);
    background: var(--background);
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--foreground);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(2024-11-12.webp);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    width: fit-content;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Highlights */
.highlights {
    display: grid;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-ctas .btn-outline a {
    color: var(--primary);
    text-decoration: none;
}

.hero-ctas .btn-outline:hover a {
    color: white;
}

#numero {
    color: #5d747e;
}

#numero:hover {
    color: var(--primary);
}

.arrow {
    transition: transform 0.2s ease;
}

.btn:hover .arrow {
    transform: translateX(0.25rem);
}

/* Trust Indicators */
.trust-indicators {
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.trust-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Quote Card */
.quote-card {
    margin-top: 2rem;
}

.quote-content {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid #F6760F;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin: 0;
    text-align: center;
}

.quote-content>p {
    color: var(--muted-foreground);
    text-align: center;
    margin: 0;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius);
    font-weight: 500;
}

/* Equipment Section */
.equipment-section {
    padding: var(--section-padding);
    background-color: #acb4a2;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.equipment-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

.equipment-gridi {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}



.equipment-card {
    background: var(--card);
    border: 2px solid #F67011;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.equipment-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

/* Equipment Image Placeholder */
.equipment-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.image-placeholder-text {
    font-size: 1.125rem;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.equipment-icon {
    font-size: 2.5rem;
}

.popular-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.equipment-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.equipment-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Benefits Section */
.benefits-section {
    background: var(--muted);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: solid 2px #F57910;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefits-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    color: var(--foreground);
}

.benefit-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.benefits-cta {
    text-align: center;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-badge {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.about-description strong {
    color: var(--foreground);
}

/* Location Card */
.location-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid #d97706;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.location-info h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.location-info p {
    color: var(--muted-foreground);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid #F56D0F;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Values Section */
.values-section {
    margin-top: 2rem;
}

.values-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    background: var(--card);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.value-item h4 {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--background);
}

.contact-badge {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-info>p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--foreground);
    font-weight: 500;
    margin: 0;
}

.contact-details p a {
    color: var(--foreground);
    text-decoration: none;
}

.contact-details p a:hover {
    color: var(--primary);
}

.contact-details span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.cta-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* Contact Form */
.form-card {
    background: var(--card);
    border: 1px solid #d97706;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-card>p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 5rem;
}

.form-submit {
    position: relative;
}

.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
}

.footer-content {
    padding: 4rem 0;
    display: grid;
    gap: 2rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}



.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.footer-logo p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 28rem;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.address-item .icon {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.address-item p {
    margin: 0;
    line-height: 1.4;
}

.address-item strong {
    color: var(--background);
}

/* Footer Links */
.footer-links h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

/* Footer Contact */
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-contact .contact-items {
    margin-bottom: 1.5rem;
}

.footer-contact .contact-item {
    gap: 0.75rem;

}

.footer-contact .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    font-size: 1.25rem;
}

.footer-contact .contact-details p {
    color: var(--background);
    font-size: 0.875rem;
}

.footer-contact .contact-details p a {
    color: var(--background);
    text-decoration: none;
}

.footer-contact .contact-details p a:hover {
    color: var(--primary-light);
}

.footer-contact .contact-details span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Quick Quote */
.quick-quote {
    background: rgba(37, 99, 235, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
}

.quick-quote p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.quick-quote p:first-child {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quick-quote a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.quick-quote a:hover {
    background: var(--primary-hover);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 20rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.toast-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Responsive Design */
@media (min-width: 640px) {
    :root {
        --container-padding: 1.5rem;
    }

    .logo-text-mobile {
        display: none;
    }

    .logo-text {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ctas {
        flex-direction: row;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.875rem;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-gridi {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .quote-card {
        margin-top: 0;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr 2fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #icc {
        width: 250px;
        height: 80px;
        position: absolute;
        z-index: 10000;
        top: 575%;
        right: 76%;
    }
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .equipment-gridi {
        grid-template-columns: repeat(2, 430px);
        margin-left: 12%;
    }

    .benefits-section {
        padding: 3rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .btn-text-short {
        display: none;
    }

    .btn-text-full {
        display: inline;
    }

    .phone-number {
        display: inline;
    }
}

/* Mobile-first additional styles */
@media (max-width: 639px) {
    .logo-text {
        display: none;
    }

    .logo-text-mobile {
        display: block;
    }

    .logo-text-mobile h1 {
        font-size: 1rem;
        margin: 0;
    }

    .btn-text-full {
        display: none;
    }

    .btn-text-short {
        display: inline;
    }

    .phone-number {
        display: none;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Links de telefone e email com cores corrigidas */
a[href^="tel"],
a[href^="mailto"],
a[href^="https://mail.google.com"] {
    text-decoration: none;
}

a[href^="https://mail.google.com"] {
    text-decoration: none;
    color: inherit;
}


a[href^="tel"]:hover,
a[href^="mailto"]:hover,
a[href^="https://mail.google.com"]:hover {
    color: var(--primary);
}

/* WhatsApp Variables */
:root {
    --whatsapp-color: hsl(142, 70%, 49%);
    --whatsapp-hover: hsl(142, 70%, 45%);
    --whatsapp-white: hsl(0, 0%, 100%);
}

/* Base styles */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

/* Hide on mobile devices */
@media (max-width: 767px) {
    .whatsapp-float {
        display: none;
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
}

/* Pulse rings */
.pulse-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp-color);
    animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Main button */
.whatsapp-button {
    position: relative;
    width: 56px;
    height: 56px;
    background: var(--whatsapp-color);
    color: var(--whatsapp-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce-gentle 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
}

/* WhatsApp icon - CENTRALIZADO PERFEITAMENTE */
.whatsapp-icon {
    width: 24px;
    height: 24px;
    /* Não precisa de position absolute, usa flex do botão pai */
}

/* Hover effect */
.hover-effect {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp-color);
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}

.whatsapp-button:hover .hover-effect {
    opacity: 0.2;
}

#what {
    position: fixed;
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-8px);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}