/* 
 * Web Agency Perugia - CreaCity
 * Style CSS
 */

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

:root {
    --primary-color: #f23178;
    --secondary-color: #44b0cd;
    --dark-color: #1a1a1a;
    --light-color: #fdf8fa;
    --text-color: #333;
    --border-color: #ffd6e7;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
header {
    background: #252526;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
    transition: padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.logo {
    width: 350px;
    height: auto;
    transition: width 0.4s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

header.scrolled .logo {
    width: 250px;
}

.logo:hover {
    opacity: 0.9;
}

/* Main Navigation - Centrato assoluto rispetto allo schermo */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.main-nav > ul > li > a:hover {
    color: var(--primary-color);
}

.main-nav > ul > li > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 240px;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border-top: 3px solid var(--primary-color);
    z-index: 1000;
    display: block !important; /* Fix display per dropdown verticale */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
    display: block; /* Assicura layout verticale */
}

.dropdown-menu a {
    color: #ccc;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(242, 49, 120, 0.1);
    color: var(--primary-color);
    padding-left: 30px; /* Shift only left padding */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: var(--secondary-color);
}

/* Mobile Menu Overlay - Full Screen */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 38, 0.98);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content > ul > li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content > ul > li > a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu-content > ul > li > a:hover {
    color: var(--primary-color);
    background: rgba(242, 49, 120, 0.1);
}

/* Mobile Dropdown */
.mobile-menu-content .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-menu-content .dropdown-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-content .dropdown.active .dropdown-menu {
    max-height: 500px;
}

.mobile-menu-content .dropdown-menu a {
    font-size: 18px;
    padding: 15px 20px;
    color: #ccc;
}

.mobile-menu-content .dropdown-menu a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

/* Close Button Mobile Menu */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.google-badge {
    display: none; /* Nascosto nell'header */
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-header {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--primary-color);
    white-space: nowrap;
}

.phone-header:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(68, 176, 205, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f23178 0%, #44b0cd 100%);
    color: white;
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(68, 176, 205, 0.4);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, rgba(242, 49, 120, 0.05) 0%, rgba(68, 176, 205, 0.05) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 49, 120, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

.quote {
    font-size: 32px;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 60px;
    position: absolute;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote::before {
    left: 0;
    top: -10px;
}

.quote::after {
    right: 0;
    bottom: -30px;
}

.quote-author {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 5px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 49, 120, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    background: var(--light-color);
    padding: 100px 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Process Grid Large - Per pagine servizi con 6 elementi */
.process-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .process-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .process-grid-large {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(242, 49, 120, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(242, 49, 120, 0.15);
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(242, 49, 120, 0.3);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--dark-color);
    text-align: center;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--light-color);
    padding: 100px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(242, 49, 120, 0.1);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(242, 49, 120, 0.2);
}

/* Portfolio - Immagine hover */
.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-image a:hover img {
    transform: scale(1.05);
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-image::before {
    width: 400px;
    height: 400px;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 22px;
    color: var(--dark-color);
}

.portfolio-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Portfolio - Link titoli */
.portfolio-info h4{
    margin-bottom: 12px;
}

.portfolio-info h4 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.portfolio-info h4 a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(242, 49, 120, 0.3);
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-details p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 25px;
    transition: color 0.3s ease;
}

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

.contact-form {
    background: var(--light-color);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(242, 49, 120, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(242, 49, 120, 0.3);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 176, 205, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background-color: #128c7e;
    text-decoration: none;
}

/* Google Partner Badge - Fixed Bottom Left */
.google-badge-fixed {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    width: 85px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.google-badge-fixed img{
	width:100%;
}

.google-badge-fixed:hover {
    transform: scale(1.05);
}

/* Prefooter Contact Section */
.prefooter-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.prefooter-contact h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.prefooter-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.prefooter-item {
    font-size: 18px;
    color: white;
}

.prefooter-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.prefooter-item a:hover {
    border-bottom-color: white;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 2.2;
    display: block;
    transition: all 0.4s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-section a.contact-inline {
    display: inline;
    margin-left: 5px;
}

.footer-section a.contact-inline:hover {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none; /* Nasconde menu desktop */
    }
    
    .mobile-menu-toggle {
        display: block; /* Mostra hamburger */
    }
    
    .header-container {
        gap: 15px;
    }
    
    .logo {
        width: 280px;
    }
    
    header.scrolled .logo {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        width: 250px;
    }
    
    header.scrolled .logo {
        width: 200px;
    }
    
    .phone-header {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .google-badge-fixed {
        max-width: 70px;
        bottom: 20px;
        left: 20px;
    }
    
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .quote {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .prefooter-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }
    
    header.scrolled .logo {
        width: 160px;
    }
    
    .phone-header {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .phone-header i {
        font-size: 14px;
    }
    
    .google-badge-fixed {
        max-width: 60px;
        bottom: 15px;
        left: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 15px;
        font-size: 24px;
    }
}
